home *** CD-ROM | disk | FTP | other *** search
- <!---- frame ---->
- <WIZSET i = 0>
- <WIZLOOP index="attribute" list="$${Evaluate('Frame' & Level)}">
- <WIZSET i = i + 1>
- <WIZIF i eq 2>
- <WIZSET Name = attribute>
- <WIZELSEIF i eq 3>
- <WIZSET Src = attribute>
- <WIZELSEIF i eq 4>
- <WIZSET NoResize = attribute>
- <WIZELSEIF i eq 5>
- <WIZSET Scrolling = attribute>
- <WIZELSEIF i eq 6>
- <WIZSET FrameBorder = attribute>
- <WIZELSEIF i eq 7>
- <WIZSET MarginWidth = attribute>
- <WIZELSEIF i eq 8>
- <WIZSET MarginHeight = attribute>
- </WIZIF>
- </WIZLOOP>
-
-
- <!---- Tag name ---->
- <WIZSET FrameTagName = DefaultCase('FRAME')>
-
- <!---- NAME attribute ---->
- <WIZSET aName = ' ' & DefaultCase('NAME') & '="' & Name & '"'>
-
- <!---- SRC attribute ---->
- <WIZSET aSrc = ' ' & DefaultCase('SRC') & '="' & Src & '"'>
-
- <!---- NORESIZE attribute ---->
- <WIZIF NoResize>
- <WIZSET aNoResize = ' ' & DefaultCase('NORESIZE')>
- <WIZELSE>
- <WIZSET aNoResize = ''>
- </WIZIF>
-
- <!---- SCROLLING attribute ---->
- <WIZIF Scrolling eq 0>
- <WIZSET aScrolling = ' ' & DefaultCase('SCROLLING') & '="auto"'>
- <WIZELSEIF Scrolling eq 1>
- <WIZSET aScrolling = ' ' & DefaultCase('SCROLLING') & '="yes"'>
- <WIZELSE>
- <WIZSET aScrolling = ' ' & DefaultCase('SCROLLING') & '="no"'>
- </WIZIF>
-
- <!---- FRAMEBORDER attribute ---->
- <WIZIF FrameBorder>
- <WIZSET aFrameBorder = ' ' & DefaultCase('FRAMEBORDER') & '="yes"'>
- <WIZELSE>
- <WIZSET aFrameBorder = ' ' & DefaultCase('FRAMEBORDER') & '="no"'>
- </WIZIF>
-
- <!---- MARGINWIDTH attribute ---->
- <WIZIF Trim(MarginWidth) neq ''>
- <WIZSET aMarginWidth = ' ' & DefaultCase('MARGINWIDTH') & '="' & MarginWidth & '"'>
- <WIZELSE>
- <WIZSET aMarginWidth = ''>
- </WIZIF>
-
- <!---- MARGINHEIGHT attribute ---->
- <WIZIF Trim(MarginHeight) neq ''>
- <WIZSET aMarginHeight = ' ' & DefaultCase('MARGINHEIGHT') & '="' & MarginHeight & '"'>
- <WIZELSE>
- <WIZSET aMarginHeight = ''>
- </WIZIF>
-
- >
- $${RepeatString( ' ', 4*Level )}<$${FrameTagName}$${aName}$${aSrc}$${aMarginWidth}$${aMarginHeight}$${aScrolling}$${aFrameBorder}$${aNoResize}
-
-
-
-
-